home *** CD-ROM | disk | FTP | other *** search
- Path: informatik.tu-muenchen.de!news
- From: ieichens@appl-math.tu-muenchen.de (Ingo Eichenseher)
- Newsgroups: comp.lang.c
- Subject: Re: Can anyone answer the question?
- Date: Mon, 12 Feb 1996 13:56:36 GMT
- Organization: Technische Universitaet Muenchen, Germany
- Distribution: world
- Message-ID: <4fnguf$btj@sunsystem5.informatik.tu-muenchen.de>
- References: <4fm3bc$t8v@news.netvoyage.net>
- NNTP-Posting-Host: p6.appl-math.tu-muenchen.de
- X-Newsreader: Forte Free Agent 1.0.82
-
- evoir@netvoyage.net (Evoir) wrote:
-
- >I tried to compile my program and I got the error:
- >Linker error: Group Dgroup exceedes 64K
-
- >what does that mean? and what can I do to fix it.
-
- It means that you have more than 64K global Data.
- Try using the 'huge' model or try to allocate some
- large global arrays by malloc instead of declaring
- them as global variables.
- /-----------------------------------------------------------------------\
- | Ingo Eichenseher - Lehrstuhl fuer Angewandte Mathematik - TU Muenchen |
- | Tel.: (089)552248-20, Fax.:(089)552248-19, Tel. privat: (0821)425204 |
- \----------- http://www.appl-math.tu-muenchen.de/~ieichens/ ------------/
-
-